@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=East+Sea+Dokdo&family=Karla:wght@300&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&family=Overpass:ital,wght@0,100;0,200;0,300;1,100;1,200&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(26, 42, 50);
}

main {
    height: 100vh;
    display: grid;
    place-items: center;
}

#container {}

.img-o {
    width: 2.1875rem;
    height: 2.1875rem;
}

.img-x {
    width: 2rem;
    height: 2rem;
}

.flex {
    display: flex;
}

.item-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

#nav {
    padding: 1.5rem;
}

#nav img {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-play {
    width: 7.5rem;
    height: 7.5rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    background-color: rgb(32, 54, 64);
    box-shadow: 0px 12px 6px -6px rgba(0, 0, 0, 1);
}

#turn {
    padding: 0.5rem 1.35rem;
    font-weight: 800;
    background-color: rgb(32, 54, 64);
    color: #c4c4c4;
    border-radius: 1rem;
    border: none;
    box-shadow: 0px 12px 6px -6px rgba(0, 0, 0, 1);
}

#return {
    padding: 0.5rem;
    background-color: #c4c4c4;
    border-radius: 0.8rem;
}

#btn-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    place-items: center;
}

.result {
    padding: 0.8rem 1.2rem;
    width: 7.5rem;
    text-align: center;
    border-radius: 1rem;
}

.result h5 {
    text-transform: uppercase;
    font-weight: 600;
}

#first-result {
    background-color: rgb(59, 195, 190);
}

#second-result {
    background-color: rgb(169, 191, 201);
}

#third-result {
    background-color: rgb(241, 176, 69);
}

@media screen and ( max-width:500px) {
    main {
        background-color: rgb(26, 42, 50);
    }
    #container {}
    .btn-play {
        width: 5.5rem;
        height: 5.5rem;
    }
    .result {
        padding: 0.8rem 1.2rem;
        width: 5.5rem;
    }
}